home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / vbkontrol.exe / VBDLL15D.ZIP / RECDISP.FR_ / RECDISP.FR
Text File  |  1995-02-24  |  674b  |  33 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    Caption         =   "Record Display Form"
  4.    ClientHeight    =   3312
  5.    ClientLeft      =   732
  6.    ClientTop       =   2412
  7.    ClientWidth     =   5316
  8.    Height          =   3840
  9.    Left            =   696
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   3312
  12.    ScaleWidth      =   5316
  13.    Top             =   1920
  14.    Width           =   5388
  15.    Begin Menu mnuShowMain 
  16.       Caption         =   "&Show Main Window"
  17.    End
  18. End
  19.  
  20. Sub Form_Load ()
  21.     RecFormLoaded = True
  22. End Sub
  23.  
  24. Sub Form_Unload (Cancel As Integer)
  25.     RecFormLoaded = False
  26.  
  27. End Sub
  28.  
  29. Sub mnuShowMain_Click ()
  30.     Form1.Show
  31. End Sub
  32.  
  33.